a {
  color: inherit;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

.w100p {
  width: 100%;
}

.btn-red-round {
  display: inline-block;
  color: #fff;
  background-color: #eca242;
  padding: 4px 24px;
  border: none;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-red-round:hover, .btn-info:hover {
  color: #fff;
  background-color: #90c278;
}

.btn-white-round {
  display: inline-block;
  color: #90c278;
  background-color: #fff;
  padding: 4px 24px;
  border: none;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-white-round:hover {
  color: #90c278;
}

.gotop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  right: 20px;
  bottom: 30%;
  padding: 10px;
  background-color: #eca242;
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  z-index: 2;
}

.gotop:hover {
  color: #fff;
}

.gotop .fa {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}


.navbar {
  background-color: #eca242;
  padding: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  z-index: 3;
}

.navbar .container {
  height: calc(100% - 80px);
  overflow: auto;
}

.navbar.active {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.navbar.active .menu-wrap {
  display: block;
}

.navbar .logo {
  display: block;
  width: 100%;
  padding: 16px 15px;
  background-color: #90c278;
}

.navbar .logo img {
  width: 250px;
}

.navbar .menu-wrap {
  display: none;
  width: 100%;
  height: 100%;
}

.navbar .menu {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 20px 0 20px;
    padding:0 20px 0 20px;

}

.navbar .menu li {
  position: relative;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #fffdff;
	
}

.navbar .menu li.active .menu-link {
  background-color: inherit;
}

.navbar .menu li:hover {
  background-color: #90c278;
}

.navbar .menu li:hover .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

}

.navbar .menu li .sub-menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style-type: none;
  position: static;
  padding: 0;
  margin: 0;
  background-color: #90c278;
  z-index: 1;
}

.navbar .menu li .sub-menu li {
  padding: 0;
}

.navbar .menu .menu-link {
  display: block;
  color: #fff;
  padding: 18px 16px;
  border-radius: 50px;
}

.navbar .menu .menu-link:hover {
  text-decoration: none;
  background-color: inherit;
}

.navbar .menu .icon-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #90c278;
  background-color: #fff;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  margin: 0 6px;
}

.navbar .menu .icon-link:hover {
  background-color: #eca242;
  text-decoration: none;
}

.navbar .icon-menu {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.navbar .icon-menu li {
  width: auto;
  border-bottom: none;
  padding: 16px 0;
}

.navbar .icon-menu li:hover {
  background-color: inherit;
}

.navbar .hamburger {
  display: inline-block;
  margin-left: auto;
}

@media (min-width: 1000px) {
  .navbar {
    position: static;
    background-color: #90c278;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 16px 0;
  }
  .navbar .container {
    height: auto;
    overflow: inherit;
  }
  .navbar .logo {
    display: none;
  }
  .navbar .menu-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .navbar .menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar .menu li {
    width: auto;
    padding: 0;
    border-bottom: none;
  }
  .navbar .menu li.active .menu-link {
    background-color: #eca242;
  }
  .navbar .menu li:hover .sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navbar .menu li .sub-menu {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    list-style-type: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0;
    padding-top: 16px;
    margin: 0;
    min-width: 10rem;
    border-radius: 4px;
    background-color: #90c278;
    z-index: 1;
  }
  .navbar .menu li .sub-menu li {
    padding: 8px;
  }
  .navbar .menu .menu-link {
    padding: 4px 16px;
  }
  .navbar .menu .menu-link:hover {
    background-color: #eca242;
  }
  .navbar .menu .icon-menu li {
    padding: 0;
  }
  .navbar .hamburger {
    display: none;
  }
}

.hamburger {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: transparent;
  border: none;
}

.hamburger.active {
  top: 17px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(1) {
  -webkit-transform: translateY(13px) rotate(45deg);
          transform: translateY(13px) rotate(45deg);
}

.hamburger.active .line:nth-child(3) {
  -webkit-transform: translateY(-11px) rotate(-45deg);
          transform: translateY(-11px) rotate(-45deg);
}

.hamburger .line {
  width: 38px;
  height: 3px;
  background-color: #ecf0f1;
  display: block;
  margin: 9px auto;
}

.hamburger .line:hover {
  cursor: pointer;
}

h1 {
  font-size: 32px;
  color: #58595b;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

h2 {
  font-size: 20px;
  text-align: center;
}

.header-eng {
  color: #f69d37;
  font-size: 16px;
  text-align: center;
}

.input-wrap {
  position: relative;
  display: inline-block;
}

.input-wrap input {
  padding: 6px 36px 6px 20px;
  border: 1px solid #000;
  border-radius: 50px;
}

.input-wrap input::-webkit-input-placeholder {
  color: #000;
}

.input-wrap input:-ms-input-placeholder {
  color: #000;
}

.input-wrap input::-ms-input-placeholder {
  color: #000;
}

.input-wrap input::placeholder {
  color: #000;
}

.input-wrap .btn-search-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 1;
}

#gmap_canvas {
  width: 100%;
}

.banner {
  position: relative;
  background-image: url("../image/banner-bg-m.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

@media (min-width: 768px) {
  .banner {
    background-image: url("../image/banner-bg.png");
  }
}

.course-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
  max-width: 1400px;
  background-color: #fff;
  border-radius: 40px;
  padding: 40px 20px;
}

.course-container .form-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.course-container .form-inline .form-group {
  margin: 0;
  width: 100%;
}

.course-container .form-inline .form-control {
  width: 100%;
  margin: 8px 0;
}

.course-container .form-inline label {
  margin-right: 4px;
  margin-bottom: 0;
}

.course-container .form-inline .btn-red-round {
  margin: 0 auto;
}

@media (min-width: 992px) {
  .course-container {
    width: 80%;
    border-radius: 100px;
  }
  .course-container .form-inline {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .course-container .form-inline .form-group {
    margin: 0 4px;
    width: auto;
  }
  .course-container .form-inline .form-control {
    width: 120px;
  }
}

@media (min-width : 1425px ){
  .course-container .form-inline .form-group {
    margin: 0 10px;
  }
}

.bulletin {
  background-image: url("../image/bulletin-bg-m.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}

.bulletin .category {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin-bottom: 60px;
}

.bulletin .category li {
  position: relative;
  padding: 0 6px;
}

.bulletin .category li ~ li::before {
  content: '|';
  position: absolute;
  left: -2px;
}

.bulletin .category li a {
  color: #000;
  padding: 4px 16px;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.bulletin .category li a:hover {
  text-decoration: none;
}

.bulletin .category li a.active {
  color: #fff;
  background-color: #eca242;
}

@media (min-width: 768px) {
  .bulletin {
    background-image: url("../image/bulletin-bg.png");
  }
  .bulletin .category li {
    padding: 0 16px;
  }
}

.bulletin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  margin-bottom: 40px;
}

.bulletin-table th,
.bulletin-table td {
  padding: 12px;
}

.bulletin-table th {
  color: #fff;
  background-color: #90c278;
}

.bulletin-table th:first-child {
  border-top-left-radius: 8px;
}

.bulletin-table th:last-child {
  border-top-right-radius: 8px;
}

.bulletin-table tr:hover td {
  color: #eca242;
}

.bulletin-table tr:nth-child(2n - 1) td {
  background-color: #ececec;
}

.diagram {
  background-image: url("../image/diagram-bg-m.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  text-align: center;
  padding: 40px 0 160px;
}

.diagram .container {
  position: relative;
}

.diagram img.center {
  width: 100%;
  margin-bottom: 20px;
}

.diagram .d-card {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  padding: 30px 0;
}

.diagram .d-card.left-top .title {
  color: #6baab3;
}

.diagram .d-card.left-bottom .title {
  color: #e26e6e;
}

.diagram .d-card.right-top {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.diagram .d-card.right-top .title-eng,
.diagram .d-card.right-top .title-large,
.diagram .d-card.right-top .content {
  text-align: center;
}

.diagram .d-card.right-bottom {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.diagram .d-card.right-bottom .right {
  width: 100%;
}

.diagram .d-card.right-bottom .title {
  color: #90c278;
}

.diagram .d-card img {
  width: 40%;
  padding: 0 10px;
}

.diagram .d-card .right {
  width: 60%;
  padding: 0 10px;
  text-align: left;
}

.diagram .d-card .title {
  font-size: 24px;
  margin-bottom: 6px;
}

.diagram .d-card .title-eng {
  color: #f49f32;
  text-align: left;
  font-size: 28px;
}

.diagram .d-card .title-large {
  font-size: 36px;
  font-weight: 700;
}

.diagram .d-card .content {
  color: #595959;
  text-align: left;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .diagram {
    background-image: url("../image/diagram-bg.png");
  }
  .diagram img.center {
    width: 80%;
  }
  .diagram .d-card img {
    max-width: 200px;
  }
}

@media (min-width : 1425px ){
  .diagram {
    padding: 160px 0 320px;
  }
  .diagram img.center {
    width: 50%;
  }
  .diagram .d-card {
    position: absolute;
    width: 28%;
    padding: 0;
  }
  .diagram .d-card.left-top {
    top: 0;
    left: 0;
  }
  .diagram .d-card.left-bottom {
    bottom: 0;
    left: 0;
  }
  .diagram .d-card.right-top {
    top: 0;
    right: 0;
  }
  .diagram .d-card.right-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    bottom: 0;
    right: 0;
  }
  .diagram .d-card.right-bottom .right {
    width: 100%;
  }
}

.video {
  background-image: url("../image/video-bg-m.png");
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0 210px;
}

.video .video-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 0;
}

.video .left {
  width: 100%;
  padding: 0 30px;
  margin-bottom: 20px;
}

.video .right {
  position: relative;
  width: 100%;
  padding: 0 20px;
}

.video .right .btn-menu-up,
.video .right .btn-menu-down {
  border: none;
  background-color: transparent;
  color: #ee7524;
  font-size: 36px;
  width: 36px;
  height: 36px;
  line-height: 36px;
}

.video .right .btn-menu-up {
  position: absolute;
  top: 50%;
  left: -10px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}

.video .right .btn-menu-down {
  position: absolute;
  top: 50%;
  right: -10px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}

.video .video-menu {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0;
  margin: 0;
  height: auto;
  overflow: hidden;
}

.video .video-menu li {
  padding: 8px;
  margin: 0 6px;
  background-color: #fff;
  border: 8px solid #636387;
  border-radius: 10px;
  width: calc(100% / 3 - 12px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.video .video-menu .menu-item {
  display: inline-block;
}

.video .video-menu .menu-item img {
  width: 100%;
}

.video .vider-container {
  position: relative;
  background-color: #fff;
  padding: 10px;
  border: 15px solid #636387;
  border-radius: 10px;
  max-width: 550px;
  margin: 0 auto;
}

.video .vider-container iframe,
.video .vider-container object,
.video .vider-container embed {
  width: 100%;
}

@media (min-width: 768px) {
  .video {
    background-image: url("../image/video-bg.png");
  }
  .video .video-row {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .video .left {
    width: 70%;
  }
  .video .right {
    width: auto;
  }
  .video .right .btn-menu-up {
    top: auto;
    bottom: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .video .right .btn-menu-down {
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .video .video-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: calc(124px * 3);
  }
  .video .video-menu li {
    margin: 6px 0;
    width: auto;
    height: 124px;
    -ms-flex-negative: unset;
        flex-shrink: unset;
  }
}

.calendar-bg {
  background-image: url("../image/calendar-bg-m.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100%;
}

@media (min-width: 768px) {
  .calendar-bg {
    background-image: url("../image/calendar-bg.png");
	background-color: #f2f0e3;
  }
}

.calendar {
  padding: 100px 0 150px;
}

.calendar .left {
  padding-left: 60px;
}

.calendar .header-eng {
  font-size: 24px;
  padding-left: 4px;
}

.calendar .header-eng,
.calendar h1,
.calendar .sub-text {
  display: block;
  text-align: center;
}

.calendar h1 {
  font-size: 48px;
}

.calendar .sub-text {
  font-size: 18px;
}

.calendar .calendar-list {
  list-style-type: none;
  margin: 20px 0;
  padding-left: unset;
  text-align: left;
}

.calendar .calendar-list li {
  margin: 10px 0;
  font-size: 18px;
}

.calendar .calendar-list li .fa {
  color: #eca242;
}

.calendar .calendar-list li a:hover {
  color: #eca242;
}

.calendar .calendar-wrap {
  background-color: #fdfdfd;
  padding: 15px;
  border-radius: 30px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.calendar .calendar-wrap .title-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #e7f0ed;
  border-radius: 30px 30px 0 0;
  padding: 15px 30px;
}

.calendar .calendar-wrap .title-bar span {
  margin: 0 15px;
}

.calendar .calendar-wrap .weeks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
  background-color: #fff;
  color: #616161;
}

.calendar .calendar-wrap .weeks .holiday {
  color: #e1706c;
}

.calendar .calendar-wrap .dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.calendar .calendar-wrap .dates .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: calc(100% / 7 - 8px);
  background-color: #fff;
  margin: 4px;
  padding: 4px 8px;
  height: 100px;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
          box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 4px;
  cursor: pointer;
}

.calendar .calendar-wrap .dates .date:hover {
  background-color: #eca242;
}

.calendar .calendar-wrap .dates .date:nth-child(7n - 6) {
  margin-left: 0;
}

.calendar .calendar-wrap .dates .date:nth-child(7n) {
  margin-right: 0;
}

@media (min-width: 768px) {
  .calendar .header-eng,
  .calendar h1,
  .calendar .sub-text {
    text-align: left;
  }
  .calendar h1 {
    display: inline-block;
    border-bottom: 1px solid #58595b;
  }
}

.about .top {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
}

.about .top .icon-img {
  position: absolute;
  top: 50%;
  right: 100%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 36px;
}

.about .header-eng {
  font-size: 24px;
  text-align: left;
  padding-left: 4px;
}

.about h1 {
  display: inline-block;
  font-size: 48px;
  border-bottom: 1px solid #58595b;
}

.about .sub-text {
  font-size: 18px;
}

.about .col-12 {
  padding: 15px 30px;
}

.about .col-12:nth-child(1) .contact-card {
  border-color: #78b6cd;
}

.about .col-12:nth-child(1) .contact-card .title {
  color: #78b6cd;
  border-bottom: 1px solid #78b6cd;
}

.about .col-12:nth-child(2) .contact-card {
  border-color: #c46062;
}

.about .col-12:nth-child(2) .contact-card .title {
  color: #c46062;
  border-bottom: 1px solid #c46062;
}

.about .col-12:nth-child(3) .contact-card {
  border-color: #68a68f;
}

.about .col-12:nth-child(3) .contact-card .title {
  color: #68a68f;
  border-bottom: 1px solid #68a68f;
}

.about .col-12:nth-child(4) .contact-card {
  border-color: #d88e35;
}

.about .col-12:nth-child(4) .contact-card .title {
  color: #d88e35;
  border-bottom: 1px solid #d88e35;
}

.about .contact-card {
  position: relative;
  padding: 20px 0 20px 60px;
  border: 3px solid #000;
  border-top-right-radius: 20px;
}

.about .contact-card .title {
  font-size: 26px;
  margin-bottom: 15px;
}

.about .contact-card .icon-img {
  position: absolute;
  bottom: 0;
  right: 100%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: 82px;
}

.about .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.about .contact-list li {
  margin: 8px 0;
}

.about .contact-list li .fa,
.about .contact-list li .icon {
  display: inline-block;
  font-size: 18px;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  font-weight: 700;
}

.hr-text {
  position: relative;
  text-align: center;
  margin: 50px 0;
}

.hr-text:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
  height: 1px;
  background-color: #595959;
  z-index: -1;
}

.hr-text span {
  display: inline-block;
  background-color: #fff;
  padding: 0 20px;
}

.contact-form {
  background-image: url("../image/img-14.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 80px;
}

.contact-form .form-group.inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-form .form-group.inline label {
  width: 100%;
  text-align: left;
  margin-right: 20px;
  margin-bottom: 0;
}

.contact-form .form-group.inline .form-control {
  width: 100%;
}

.contact-form .form-group:not(.inline) {
  padding-left: 0;
}

@media (min-width: 768px) {
  .contact-form .form-group.inline {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .contact-form .form-group.inline label {
    text-align: right;
    width: 120px;
  }
  .contact-form .form-group.inline .form-control {
    width: calc(100% - 120px);
  }
  .contact-form .form-group.inline select.form-control {
    width: 200px;
  }
  .contact-form .form-group:not(.inline) {
    padding-left: 50px;
  }
}

footer {
  color: #fff;
  background-color: #90c278;
  padding: 20px 0;
}

footer div {
  text-align: center;
}

footer .address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .address span {
  display: block;
  width: 100%;
}

@media (min-width: 992px) {
  footer {
    padding: 40px;
  }
  footer div {
    text-align: left;
  }
  footer .address {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  footer .address span {
    width: auto;
  }
}
/*# sourceMappingURL=index.css.map */
